PointMake
Type
operator
Summary
Creates a new point value.
Syntax
point <mPoint>
Description
Creates a new point value.
Parameters
| Name | Type | Description |
|---|---|---|
mPoint | An expression which evaluates to a list of 2 numbers, the x and y coordinates of the point. |
Examples
variable tPoint
put point [50, 100] into tPoint
Value
| Name | Type | Description |
|---|---|---|
return | A new point with the given coordinates |